From: Juanma Barranquero Date: Wed, 18 Jul 2007 11:48:47 +0000 (+0000) Subject: (For, Fand): Doc fixes. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~17842 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=bb37d8ddb4410541564c500638d7904330a20d4b;p=emacs.git (For, Fand): Doc fixes. Reported by Johan Bockgård. --- diff --git a/src/eval.c b/src/eval.c index cd0d0fc1c5c..b96c35a41b1 100644 --- a/src/eval.c +++ b/src/eval.c @@ -330,7 +330,7 @@ DEFUN ("or", For, Sor, 0, UNEVALLED, 0, doc: /* Eval args until one of them yields non-nil, then return that value. The remaining args are not evalled at all. If all args return nil, return nil. -usage: (or CONDITIONS ...) */) +usage: (or CONDITIONS...) */) (args) Lisp_Object args; { @@ -355,7 +355,7 @@ DEFUN ("and", Fand, Sand, 0, UNEVALLED, 0, doc: /* Eval args until one of them yields nil, then return nil. The remaining args are not evalled at all. If no arg yields nil, return the last arg's value. -usage: (and CONDITIONS ...) */) +usage: (and CONDITIONS...) */) (args) Lisp_Object args; {